home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 5_2.lha / 5_2 / 5_2a1.c < prev    next >
Text File  |  1993-08-08  |  321b  |  16 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. / constructor for a tnode
  6. include <tnode.h>
  7. include <string.h>
  8.  
  9. node:: tnode(char *s)
  10.  
  11.    count = 1;
  12.    tword = new char[strlen(s)+1];
  13.    strcpy(tword, s);
  14.    left = right = 0;
  15.  
  16.